home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / extern_widgets / README < prev   
Encoding:
Text File  |  1995-06-29  |  725 b   |  26 lines

  1. This directory contains "widget description" files, to be used to add
  2. extra widgets to tclMotif. Suppose the widget is "foo". There will be
  3. a file (that might as well be called "foo") that contains lines of info
  4. such as:
  5.  
  6.     command            xmFoo
  7.     class            fooWidgetClass
  8.     create-function        Tm_AnyCmd
  9.     method-function        Tm_AnyWidgetCmd
  10.     include-file        <foo.h>
  11.     reason            XmCR_ANCHOR    anchor
  12.     reason            XmCR_HTTP    http
  13.     library            -lfoo
  14.     include-dir        /usr/local/include/foo
  15.  
  16. There may also be files
  17.  
  18.     foo.expand
  19.     foo.initialise
  20.     foo.commands
  21.  
  22. The first contains code to handle percent expansion.
  23. The second contains additional initialisation code for the widget.
  24. The third contains any additional code for widget creation and
  25. method handling.
  26.